.module-header__title{
    position: relative;
}

.section-header__description{
    color: #4793B8;
    font-size: 16px;
    transition: color .15s ease;
}

.section-header__description:before {
    content: attr(data-collapsed-title);
    position: absolute;
    right: 36px;
    top: 0;
}

.module-header.active .section-header__description:before {
    content: attr(data-expanded-title);
}

.module-header:hover .section-header__description {
    color: #186C95;
}

.section-close .section-button{
    color: #4793B8;
    font-size: 16px;
    transition: color .15s ease;
    width: 50px;
    height: 50px;
}

.back-link__link {
    color: #4793B8;
    font-weight: 500;
    transition: color .15s ease, text-decoration .15s ease;
    display: inline-block;
    margin-top: 24px;
}

.back-link__link:hover {
    color: #186C95;
    text-decoration: underline;
}

.cottage-info.collapsable.full:not(.active) ~ .cottage-info__collapse-button-wrapper {
    display: none!important;
}

.cottage-info__collapse-button-wrapper {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
    padding-right: 18px;
}

@media (max-width: 767px) {
    .cottage-info__collapse-button-wrapper {
        margin-left: -24px;
        margin-right: -24px;
    }
}

.cottage-info__collapse-button {
    color: #4793B8;
    font-size: 16px;
    position: relative;
    padding-right: 32px;
}

.cottage-info__collapse-button:hover {
    color: #186C95;
}

.cottage-info__collapse-button:before {
    background-image: url('/local/templates/.default/img/caret5-active-b.svg');
    background-repeat: no-repeat;
    background-size: 24px;
    content: "";
    width: 24px;
    height: 11px;
    position: absolute;
    right: 0;
    top: calc(50% - 6px);
    transform: rotate(180deg);
}

.cottage-info__collapse-button:hover:before {
    background-image: url('/local/templates/.default/img/caret5-active2-b.svg');
}

@media (max-width: 481px){
    .section-header__description{
        display: none;
    }
}